web3.js@0.2x.x web3.eth.hashrate
web3.eth.hashrate
ノードのハッシュレート(秒間あたりのハッシュ計算数)を返します。
読み取り専用プロパティです。
非同期コード
web3.eth.getHashrate(callback(error, result){ ... })
戻り値
Number
ノードのハッシュレート
サンプルコード
code:example.js
var hashrate = web3.eth.hashrate;
console.log(hashrate); // 493736
参考